home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_06_07 / v6n7083a.txt < prev    next >
Text File  |  1989-09-26  |  361b  |  17 lines

  1. ; Additional stack for device driver
  2.  
  3. ; This file should be assembled as follows:
  4. ;
  5. ;    MASM STACK/DSTACK_SIZE=%1,STK%1,D:LISTING.LST/N;
  6. ;
  7. ; Here %1 is the number of words the stack segment should contain.
  8. ; It can be implemented as a .BAT file.
  9.  
  10. CGROUP    GROUP    DDSTACK
  11.  
  12. DDSTACK    SEGMENT WORD PUBLIC 'CODE'
  13.     DW    STACK_SIZE DUP (?)
  14. DDSTACK    ENDS
  15.  
  16.     END
  17.